Fixed test_virtual_manifest_all_implied test
authordebris <marek.kotewicz@gmail.com>
Fri, 28 Jul 2017 09:19:54 +0000 (11:19 +0200)
committerdebris <marek.kotewicz@gmail.com>
Fri, 28 Jul 2017 09:19:54 +0000 (11:19 +0200)
tests/test.rs

index fb3dad0d3763f65e85b292d5ad3c253888564e9e..d0d577d0991e4f811474170efa390ec496938b6c 100644 (file)
@@ -2482,20 +2482,9 @@ fn test_virtual_manifest_all_implied() {
         "#);
 
     assert_that(p.cargo_process("test"),
-                execs().with_status(0).with_stdout_contains("\
-running 1 test
-test b ... ok
-
-test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured
-
-")
-                .with_stdout_contains("\
-running 1 test
-test b ... ok
-
-test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured
-
-"));
+                execs().with_status(0)
+                       .with_stdout_contains("test a ... ok")
+                       .with_stdout_contains("test b ... ok"));
 }
 
 #[test]